home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / educate / perlb161.zip / PERLIB32.EXE / 0 / RCDATA / TFRMSETTEMPERATURE / TFRMSETTEMPERATURE.txt
Text File  |  1997-04-27  |  4KB  |  165 lines

  1. object frmSetTemperature: TfrmSetTemperature
  2.   Left = 270
  3.   Top = 317
  4.   HelpContext = 5
  5.   HorzScrollBar.Visible = False
  6.   VertScrollBar.Visible = False
  7.   BorderIcons = [biSystemMenu]
  8.   BorderStyle = bsDialog
  9.   Caption = 'Set Temperature'
  10.   ClientHeight = 227
  11.   ClientWidth = 425
  12.   Font.Color = clWindowText
  13.   Font.Height = -13
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   FormStyle = fsStayOnTop
  17.   KeyPreview = True
  18.   Position = poDefaultPosOnly
  19.   OnCreate = FormCreate
  20.   OnShow = FormShow
  21.   PixelsPerInch = 120
  22.   TextHeight = 16
  23.   object butOK: TButton
  24.     Left = 324
  25.     Top = 192
  26.     Width = 93
  27.     Height = 29
  28.     Caption = '&OK'
  29.     Default = True
  30.     TabOrder = 2
  31.     OnClick = butClick
  32.   end
  33.   object butCancel: TButton
  34.     Left = 224
  35.     Top = 192
  36.     Width = 93
  37.     Height = 29
  38.     Cancel = True
  39.     Caption = 'C&ancel'
  40.     TabOrder = 1
  41.     OnClick = butClick
  42.   end
  43.   object butHelp: TButton
  44.     Left = 124
  45.     Top = 192
  46.     Width = 93
  47.     Height = 29
  48.     Caption = '&Help'
  49.     TabOrder = 0
  50.     OnClick = butClick
  51.   end
  52.   object pageTemp: TPageControl
  53.     Left = 4
  54.     Top = 4
  55.     Width = 417
  56.     Height = 181
  57.     ActivePage = tabKelvin
  58.     TabOrder = 3
  59.     TabStop = False
  60.     OnChanging = pageTempChanging
  61.     object tabKelvin: TTabSheet
  62.       Caption = '&Kelvin'
  63.       object Label1: TLabel
  64.         Left = 16
  65.         Top = 100
  66.         Width = 377
  67.         Height = 37
  68.         AutoSize = False
  69.         Caption = 
  70.           'In order to input temperature in a different unit, click on the ' +
  71.           'desired tab above.'
  72.         Transparent = True
  73.       end
  74.       object Label2: TLabel
  75.         Left = 16
  76.         Top = 8
  77.         Width = 377
  78.         Height = 53
  79.         AutoSize = False
  80.         Caption = 
  81.           'Please type the desired temperature in Kelvin from the range of ' +
  82.           '0.00 to 6000.00. A maximum of 2 decimal places will be preserved' +
  83.           ':'
  84.         Transparent = True
  85.       end
  86.       object txtKelvin: TEdit
  87.         Left = 40
  88.         Top = 64
  89.         Width = 133
  90.         Height = 24
  91.         AutoSize = False
  92.         TabOrder = 0
  93.       end
  94.     end
  95.     object tabCelsius: TTabSheet
  96.       Caption = '&Celsius'
  97.       object Label3: TLabel
  98.         Left = 16
  99.         Top = 8
  100.         Width = 377
  101.         Height = 53
  102.         AutoSize = False
  103.         Caption = 
  104.           'Please type the desired temperature in Celsius from the range of' +
  105.           ' -273.15 to 5726.85. A maximum of 2 decimal places will be prese' +
  106.           'rved:'
  107.         Transparent = True
  108.       end
  109.       object Label4: TLabel
  110.         Left = 16
  111.         Top = 100
  112.         Width = 377
  113.         Height = 37
  114.         AutoSize = False
  115.         Caption = 
  116.           'In order to input temperature in a different unit, click on the ' +
  117.           'desired tab above.'
  118.         Transparent = True
  119.       end
  120.       object txtCelsius: TEdit
  121.         Left = 40
  122.         Top = 64
  123.         Width = 133
  124.         Height = 24
  125.         AutoSize = False
  126.         TabOrder = 0
  127.       end
  128.     end
  129.     object tabFarenheit: TTabSheet
  130.       Caption = '&Farenheit'
  131.       object Label5: TLabel
  132.         Left = 16
  133.         Top = 8
  134.         Width = 377
  135.         Height = 53
  136.         AutoSize = False
  137.         Caption = 
  138.           'Please type the desired temperature in Fahrenheit from the range' +
  139.           ' of -459.67 to 10340.33. A maximum of 2 decimal places will be p' +
  140.           'reserved:'
  141.         Transparent = True
  142.       end
  143.       object Label6: TLabel
  144.         Left = 16
  145.         Top = 100
  146.         Width = 377
  147.         Height = 37
  148.         AutoSize = False
  149.         Caption = 
  150.           'In order to input temperature in a different unit, click on the ' +
  151.           'desired tab above.'
  152.         Transparent = True
  153.       end
  154.       object txtFarenheit: TEdit
  155.         Left = 40
  156.         Top = 64
  157.         Width = 133
  158.         Height = 24
  159.         AutoSize = False
  160.         TabOrder = 0
  161.       end
  162.     end
  163.   end
  164. end
  165.